home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / irssi / src / irc / dcc / dcc-rec.h < prev    next >
C/C++ Source or Header  |  2006-05-02  |  939b  |  28 lines

  1. int type;
  2. int orig_type; /* original DCC type that was sent to us - same as type except GET and SEND are swapped */
  3. time_t created;
  4.  
  5. IRC_SERVER_REC *server;
  6. char *servertag; /* for resetting server later if we get disconnected */
  7. char *mynick; /* my current nick */
  8. char *nick;
  9.  
  10. CHAT_DCC_REC *chat; /* if the request came through DCC chat */
  11. char *target; /* who the request was sent to - your nick, channel or NULL if you sent the request */
  12. char *arg;
  13.  
  14. IPADDR addr; /* address we're connected in */
  15. char addrstr[MAX_IP_LEN]; /* in readable form */
  16. int port; /* port we're connected in */
  17.  
  18. GIOChannel *handle; /* socket handle */
  19. int tagconn, tagread, tagwrite;
  20. time_t starttime; /* transfer start time */
  21. uoff_t transfd; /* bytes transferred */
  22.  
  23. int pasv_id; /* DCC Id for passive DCCs. <0 means a passive DCC, >=0 means a standard DCC */
  24.  
  25. unsigned int destroyed:1; /* We're about to destroy this DCC recond */
  26.  
  27. GHashTable *module_data;
  28.